home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / uclib51a / uc_glob.h < prev    next >
Text File  |  1988-10-06  |  726b  |  28 lines

  1. /*
  2.  *    uc_glob.h
  3.  *
  4.  *    header file for Unicorn Software Libraries
  5.  *
  6.  *    Copyright (c) 1988 by David A. Miller --> Unicorn software
  7.  *
  8.  */
  9.  
  10. unsigned _v_start = 0x0b800;  /* Video buffer segment address      */
  11.                   /* video memory pointer           */
  12. char far *vid_ptr = ( char far * ) 0x0b8000000;
  13.  
  14.  
  15. int     G_ROWS   = 0;
  16. int     G_COLS   = 0;
  17. int     NUM_COLS = 80;       /* Number of text screen columns      */
  18. int     NUM_ROWS = 25;       /* Number of text screen rows      */
  19.  
  20. int     CUR_FORE = 7;          /* Current screen foreground color  */
  21. int     CUR_BACK = 0;          /* Current screen background color  */
  22. int     CUR_ATT  = 0x07;     /* Curent screen attribute      */
  23.  
  24.  
  25. CURSOR uc_cursor;
  26.  
  27. int mouse_exist = 0;
  28.